home *** CD-ROM | disk | FTP | other *** search
- # Jedi Knight Cog Script
- #
- # CTF_ITEMKEYGOLD.COG
- #
- # Describes the CTF Gold key when the player
- # activates the inventory item.
- #
- # [YB]
- #
- # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
-
- symbols
-
- message activated
-
- sound keysound=BactaUse01.WAV
- int player local
-
- end
-
- # ========================================================================================
-
- code
-
- activated:
- player = GetSourceRef();
- // Print("This Key Opens The CTF Gold Doors !");
- jkPrintUNIString(player, 1075);
- PlaySoundLocal(keysound, 1.0, 0.0, 0 );
-
- Return;
-
- end
-
-
-
-
-